home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / edit / me_cd25.zip / BOBSMUTT.ZIP / PAGEOW.MUT < prev    next >
Text File  |  1992-05-10  |  331b  |  20 lines

  1.   ;; $Source: c:/lib/mutt/RCS/pageow.mut $
  2.   ;; $Revision: 1.2 $
  3.   ;; $Date: 1992/05/10 13:03:24 $
  4.   ;; Bob Stocker Public Domain
  5.  
  6. (defun
  7.   page-other-window
  8.   ;; Page other window.
  9.   {
  10.     (if
  11.       (> (windows) 1)
  12.       {
  13.         (next-window)
  14.         (next-page)
  15.         (previous-window)
  16.       }
  17.     )
  18.   }
  19. )
  20.